Blazor | ComponentOne
C1.Blazor.Core Assembly / C1.Blazor.Core Namespace / Range<T> Class / And Operator
The left operand.
The right operand.

In This Topic
    And Operator
    In This Topic
    The intersection operator.
    Syntax
    'Declaration
     
    
    Public Operator And( _
       ByVal left As Range(Of T), _
       ByVal right As Range(Of T) _
    ) As Range(Of T)
    public Range<T> operator &( 
       Range<T> left,
       Range<T> right
    )

    Parameters

    left
    The left operand.
    right
    The right operand.

    Return Value

    The intersection of left and right.
    See Also